home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacTech 1 to 12
/
MacTech-vol-1-12.toast
/
Source
/
MacTech® Magazine
/
Volume 07 - 1991
/
07.08 Aug 91
/
Dots Source
/
Dots.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-11-05
|
367 b
|
17 lines
|
[
TEXT/KAHL
]
/****************************
Dots.c
The main file for Dots. Uses the THINK Class Library
*****************************/
#include "cDotsApp.h"
extern CApplication *gApplication;
void main()
{
gApplication = new(cDotsApp); /* Create application */
((cDotsApp *)gApplication)->IDotsApp(); /* Init application */
gApplication->Run();
gApplication->Exit();
}